home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM =============================================================
- REM This is the setsound program. Do NOT change it, or the setsound
- REM program may not work correctly.
- REM =============================================================
-
- if not exist SETD.EXE goto WrongDir
- cls
-
- SETD > nul
- if ERRORLEVEL 1 goto NoDriver
- copy SOUNDRV.COM SOUNDRV.AWC > nul
- del SOUNDRV.COM > nul
- echo Adventures With Chickens is ready to rumble!
- echo Type in CHICKEN and press ENTER to play.
- goto Done
-
- :NoDriver
- copy NOSOUND.COM SOUNDRV.AWC > nul
- echo Adventures With Chickens is ready to go!
- echo Type in CHICKEN and press ENTER to play.
- goto Done
-
- :WrongDir
- echo Couldn't find sound setup utility.
-
- :Done
- echo.
- echo.
-